home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / pc / SNNSV32.ZIP / SNNSv3.2 / xgui / sources / ui_netGraph.ph < prev    next >
Encoding:
Text File  |  1994-04-25  |  1.3 KB  |  58 lines

  1. /*****************************************************************************
  2.   FILE           : ui_netGraph.ph
  3.   SHORTNAME      : netGraph.ph
  4.   SNNS VERSION   : 3.2
  5.  
  6.   PURPOSE        : Header file of correspondent '.c' file
  7.   NOTES          :
  8.  
  9.   AUTHOR         : Tilman Sommer
  10.   DATE           : 18.5.1990
  11.  
  12.   CHANGED BY     :
  13.   IDENTIFICATION : @(#)ui_netGraph.ph    1.9 3/23/94
  14.   SCCS VERSION   : 1.9
  15.   LAST CHANGE    : 3/23/94
  16.  
  17.              Copyright (c) 1990-1994  SNNS Group, IPVR, Univ. Stuttgart, FRG
  18.              
  19. ******************************************************************************/
  20.  
  21.  
  22. #ifndef _UI_NETGRAPH_DEFINED_
  23. #define _UI_NETGRAPH_DEFINED_
  24.  
  25.  
  26. /* begin global definition section */
  27.  
  28.  
  29. void ui_drawGrowingThing (struct Ui_DisplayType *, struct PosType, int);
  30. void ui_drawUnit (struct Ui_DisplayType *, int, FlagType);
  31. void ui_drawLink (struct Ui_DisplayType *, int, int, FlintType, FlagType);
  32. Bool ui_areConnected (int sourceNo, int targetNo) ;
  33.  
  34.  
  35. /* dimension of a unit */
  36. int ui_unitWidth  = 16;
  37. int ui_unitHeight = 16;
  38.  
  39.  
  40. /* end global definition section */
  41.  
  42.  
  43. /* begin private definition section */
  44.  
  45.  
  46. static struct PosType ui_arrowPoint (struct PosType, struct PosType);
  47. static double ui_angle (struct PosType source, struct PosType target) ;
  48.  
  49.  
  50. /* end private definition section */
  51.  
  52.  
  53. #endif /* _UI_NETGRAPH_DEFINED_ */
  54.  
  55.  
  56. /* end of file */
  57. /* lines: 30 */
  58.